Remove some excessive debug logging.
authorEwan Mellor <ewan@xensource.com>
Sat, 10 Mar 2007 20:18:17 +0000 (20:18 +0000)
committerEwan Mellor <ewan@xensource.com>
Sat, 10 Mar 2007 20:18:17 +0000 (20:18 +0000)
Signed-off-by: Ewan Mellor <ewan@xensource.com>
tools/python/xen/xend/XendNode.py

index 5976d80f397e0a0eda88d9b4ccd35791c0ab0bb3..3b261d872206169c9eb6e554eaefb1d8d0b036c7 100644 (file)
@@ -95,15 +95,12 @@ class XendNode:
                 self.cpus[u] = {'uuid': u, 'number': i }
 
         for u in self.cpus.keys():
-            log.error(self.cpus[u])
             number = self.cpus[u]['number']
             # We can run off the end of the cpuinfo list if domain0 does not
             # have #vcpus == #pcpus. In that case we just replicate one that's
             # in the hash table.
             if not cpuinfo.has_key(number):
                 number = cpuinfo.keys()[0]
-            log.error(number)
-            log.error(cpuinfo)
             if arch.type == "x86":
                 self.cpus[u].update(
                     { 'host'     : self.uuid,